home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue39 / smarter / Component Captions / Unit1.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1998-02-22  |  788 b   |  40 lines

  1. unit Unit1;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   Menus, Grids, DBGrids, StdCtrls, Mask, DBCtrls, ExtCtrls, Db, DBTables;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     tablMain: TTable;
  12.     dsrcMain: TDataSource;
  13.     tablDetail: TTable;
  14.     dsrcDetail: TDataSource;
  15.     tablLookup: TTable;
  16.     dsrcLookup: TDataSource;
  17.     DBNavigator1: TDBNavigator;
  18.     DBLookupComboBox1: TDBLookupComboBox;
  19.     DBEdit1: TDBEdit;
  20.     DBGrid1: TDBGrid;
  21.     menuMain: TMainMenu;
  22.     File1: TMenuItem;
  23.     About1: TMenuItem;
  24.     dopnImport: TOpenDialog;
  25.     dopnExport: TOpenDialog;
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   Form1: TForm1;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39. end.
  40.